global variable

英 [ˈɡləʊbl ˈveəriəbl] 美 [ˈɡloʊbl ˈveriəbl]

网络  全域變數; 全局變量; 整体变数; 全局变量; 所使用

计算机



双语例句

  1. The file starts with getting the database handle, which it stores in a global variable.
    文件首先得到数据库句柄,句柄保存在一个全局变量中。
  2. A global variable is a representation of a changeable value which can be accessed and modified using SQL statements.
    全局变量表示一个可以使用SQL语句访问和修改的可变值。
  3. Next, add a global variable to hold the manager approval message.
    接下来,添加一个全局变量以保存经理批准消息。
  4. A global variable is instantiated to its default value when it is first referenced in the session.
    当在会话中第一次引用时,全局变量将进行实例化来获得其默认值。
  5. The value of a global variable can be changed using the SET, SELECT INTO, VALUES INTO statements.
    可以使用SET,SELECTINTO,VALUESINTO语句改变全局变量的值。
  6. But because it lacks a var declaration, it's a global variable.
    但它缺少var声明,这是个全局变量。
  7. This mode is often used for global variable access, branching, and subroutine calls.
    这种模式通常用于全局变量访问、分支以及子程序调用。
  8. For programmatic purposes, you will bind each field to a global variable.
    出于编程目的,您要将每个字段绑定到全局变量。
  9. Furthermore, you cannot ALTER the global variable definition at all, including its default value.
    此外,您不能更改全局变量定义,包括其默认值。
  10. If the creation of a global variable is rolled back, then the variable no longer exists.
    如果回滚全局变量的创建,那么该变量将不再存在。
  11. Without local variables, all event handler instances would work on the same global variable instances.
    如果没有局部变量,所有事件处理程序实例都将在相同的全局变量实例上工作。
  12. To create a global variable, you use the new CREATE VARIABLE SQL statement.
    要创建一个全局变量,可以使用新的CREATEVARIABLESQL语句。
  13. After the global variable is defined, any JavaScript included can safely use it to point to the servlet.
    定义全局变量后,包括的任何JavaScript都可以安全地使用它,以指向Servlet。
  14. The default expression calculates a value to assign to the global variable the first time it is referenced.
    在第一次引用时,默认表达式将为全局变量计算一个值。
  15. This addition makes the editMode global variable true only when users are editing.
    此添加的代码行使editMode全局变量仅在用户编辑时为true。
  16. The setting of a global variable's value is non-transactional.
    对全局变量值的设定是非事务性的。
  17. Generally, every global variable and function in the script environment is accessible from Java code through the get() method.
    一般而言,Java代码通过get()方法可以访问脚本环境中的所有全局变量和函数。
  18. What is a global variable?
    什么是全局变量?
  19. It just translates into one single call, using the global variable$ os.
    这可以翻译成一个单独的调用,该调用使用全局变量$os。
  20. Two threads each incremented a global variable twenty times.
    两个线程分别对同一个全局变量进行了二十次加一。
  21. A global variable, on the other hand, you can access anywhere within your process.
    另一方面,您可以在流程中的任何位置访问全局变量。
  22. The owner of the global variable is explicitly granted all privileges on the variable.
    全局变量的所有者被显式授予了有关该变量的所有权限。
  23. This rule also applies to their definition& privileges associated with a global variable are also defined within the system catalog.
    这条规则同样适用于全局变量的定义&与全局变量相关的权限也在系统编目中进行了定义。
  24. The default clause specified can be either a constant, a special register, another global variable, an expression or the keyword NULL.
    默认指定的子句可以为一个常量、一个特殊的寄存器、另一个全局变量、一个表达式或关键字NULL。
  25. The perror() and strerror() functions that pull standard error descriptions come from the global variable, sys_errlist.
    引出标准错误描述的perror()和strerror()函数来自syserrlist全局变量。
  26. The lua_setglobal() function then assigns the top value on the stack to a named global variable.
    然后,luasetglobal()函数将栈顶的值赋给一个有名称的全局变量。
  27. If you declare a local variable or function parameter with the same name as a global variable, you effectively hide the global variable.
    如果给一个局部变量或函数的参数声明的名字与某个全局变量的名字相同,那么就有效地隐藏了这个全局变量。
  28. Changes to the global variable from inside the function do affect the value in the global scope.
    在函数内部对全局变量的更改会影响全局范围内的值。
  29. View or modify the outer package global variable settings for the Execute Package task.
    查看或修改执行包任务的外部包全局变量设置。
  30. Incrementing a global variable is 2 times slow than a local var.
    递增一个全局变量要比递增一个局部变量慢2倍。